home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / misc / math / MathFX_src.lha / fxxtik.c < prev    next >
C/C++ Source or Header  |  1995-12-20  |  200b  |  11 lines

  1. #include "mathfx.h"
  2.  
  3. void fxxtik(x,y,left,right)
  4. int x, y, left, right;
  5. {      
  6.       draphy(x,y);
  7.       if (left != 0) draphy(x,y-left);
  8.       if (right != 0) draphy(x,y+right);
  9.       draphy(x,y);
  10. }
  11.